home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_xemacs.idb / usr / freeware / lib / xemacs-20.4 / lisp / prim / loadup.el.z / loadup.el
Encoding:
Text File  |  1998-05-21  |  7.6 KB  |  215 lines

  1. ;;; loadup.el --- load up standardly loaded Lisp files for XEmacs.
  2.  
  3. ;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc.
  4. ;; Copyright (C) 1996 Richard Mlynarik.
  5. ;; Copyright (C) 1995, 1996 Ben Wing.
  6.  
  7. ;; Keywords: internal
  8.  
  9. ;; This file is part of XEmacs.
  10.  
  11. ;; XEmacs is free software; you can redistribute it and/or modify it
  12. ;; under the terms of the GNU General Public License as published by
  13. ;; the Free Software Foundation; either version 2, or (at your option)
  14. ;; any later version.
  15.  
  16. ;; XEmacs is distributed in the hope that it will be useful, but
  17. ;; WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  19. ;; General Public License for more details.
  20.  
  21. ;; You should have received a copy of the GNU General Public License
  22. ;; along with XEmacs; see the file COPYING.  If not, write to the Free
  23. ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  24. ;; 02111-1307, USA.
  25.  
  26. ;;; Synched up with: Last synched with FSF 19.30, with wild divergence since.
  27.  
  28. ;;; Commentary:
  29.  
  30. ;; It is not a good idea to edit this file.  Use site-init.el or site-load.el
  31. ;; instead.
  32. ;;
  33. ;; This is loaded into a bare Emacs to make a dumpable one.
  34.  
  35. ;;; Code:
  36.  
  37. (if (fboundp 'error)
  38.     (error "loadup.el already loaded!"))
  39.  
  40. (define-function 'defalias 'define-function)
  41. (defvar running-xemacs t
  42.   "Non-nil when the current emacsen is XEmacs.")
  43. (defvar preloaded-file-list nil
  44.   "List of files preloaded into the XEmacs binary image.")
  45.  
  46. (call-with-condition-handler
  47.       ;; This is awfully damn early to be getting an error, right?
  48.       'really-early-error-handler
  49.  #'(lambda ()
  50.      ;; message not defined yet ...
  51.      (external-debugging-output (format "\nUsing load-path %s" load-path))
  52.  
  53.      ;; We don't want to have any undo records in the dumped XEmacs.
  54.      (buffer-disable-undo (get-buffer "*scratch*"))
  55.  
  56.      ;; lread.c (or src/Makefile.in.in) has prepended "${srcdir}/../lisp/prim"
  57.      ;; to load-path, which is how this file has been found.  At this point,
  58.      ;; enough of emacs has been initialized that we can call directory-files
  59.      ;; and get the rest of the dirs (so that we can dump stuff from modes/
  60.      ;; and packages/.)
  61.      ;;
  62.      (let ((temp-path (expand-file-name ".." (car load-path))))
  63.        (setq source-directory temp-path)
  64.        (setq load-path (nconc (mapcar
  65.                    #'(lambda (i) (concat i "/"))
  66.                    (directory-files temp-path t "^[^-.]"
  67.                         nil 'dirs-only))
  68.                   (cons temp-path load-path))))
  69.  
  70.      (setq load-warn-when-source-newer t ; set to nil at the end
  71.        load-warn-when-source-only  t)
  72.  
  73.      ;; Inserted for debugging.  Something is corrupting a single symbol
  74.      ;; somewhere to have an integer 0 property list.  -slb 6/28/1997.
  75.      (defun test-atoms ()
  76.        (mapatoms
  77.     #'(lambda (symbol)
  78.         (condition-case nil
  79.         (get symbol 'custom-group)
  80.           (t (princ
  81.           (format "Bad plist in %s, %s\n"
  82.               (symbol-name symbol)
  83.               (prin1-to-string (object-plist symbol)))))))))
  84.  
  85.      ;; garbage collect after loading every file in an attempt to
  86.      ;; minimize the size of the dumped image (if we don't do this,
  87.      ;; there will be lots of extra space in the data segment filled
  88.      ;; with garbage-collected junk)
  89.      (defmacro load-gc (file)
  90.        (list 'prog1 (list 'load file)
  91.          ;; '(test-atoms)
  92.          '(garbage-collect)))
  93.      ;; Need a minimal number hardcoded to get going for now.
  94.      ;; (load-gc "backquote")        ; needed for defsubst etc.
  95.      ;; (load-gc "bytecomp-runtime")    ; define defsubst
  96.      ;; (load-gc "subr")        ; load the most basic Lisp functions
  97.      ;; (load-gc "replace")        ; match-string used in version.el.
  98.      ;; (load-gc "version.el")    ; Ignore compiled-by-mistake version.elc
  99.      ;; (load-gc "cl")
  100.      ;; (load-gc "featurep") ; OBSOLETE now
  101.      (load "dumped-lisp.el")
  102.      (let ((dumped-lisp-packages preloaded-file-list)
  103.        file)
  104.        (while (setq file (car dumped-lisp-packages))
  105.      (load-gc file)
  106.      (setq dumped-lisp-packages (cdr dumped-lisp-packages)))
  107.        (if (not (featurep 'toolbar))
  108.        (progn
  109.          ;; else still define a few functions.
  110.          (defun toolbar-button-p    (obj) "No toolbar support." nil)
  111.          (defun toolbar-specifier-p (obj) "No toolbar support." nil)))
  112.        (fmakunbound 'load-gc))
  113.      )) ;; end of call-with-condition-handler
  114.  
  115.  
  116. ;; Fix up the preloaded file list
  117. (setq preloaded-file-list (mapcar #'file-name-sans-extension
  118.                   preloaded-file-list))
  119.  
  120. (setq load-warn-when-source-newer t ; set to t at top of file
  121.       load-warn-when-source-only nil)
  122.  
  123. (setq debugger 'debug)
  124.  
  125. (when (member "no-site-file" command-line-args)
  126.   (setq site-start-file nil))
  127.  
  128. ;; If you want additional libraries to be preloaded and their
  129. ;; doc strings kept in the DOC file rather than in core,
  130. ;; you may load them with a "site-load.el" file.
  131. ;; But you must also cause them to be scanned when the DOC file
  132. ;; is generated.  For VMS, you must edit ../../vms/makedoc.com.
  133. ;; For other systems, you must edit ../../src/Makefile.in.in.
  134. (if (load "site-load" t)
  135.     (garbage-collect))
  136.  
  137. ;;FSFmacs randomness
  138. ;;(if (fboundp 'x-popup-menu)
  139. ;;    (precompute-menubar-bindings))
  140. ;;; Turn on recording of which commands get rebound,
  141. ;;; for the sake of the next call to precompute-menubar-bindings.
  142. ;(setq define-key-rebound-commands nil)
  143.  
  144.  
  145. ;; Note: all compiled Lisp files loaded above this point
  146. ;; must be among the ones parsed by make-docfile
  147. ;; to construct DOC.  Any that are not processed
  148. ;; for DOC will not have doc strings in the dumped XEmacs.
  149.  
  150. ;; Don't bother with these if we're running temacs, i.e. if we're
  151. ;; just debugging don't waste time finding doc strings.
  152.  
  153. ;; purify-flag is nil if called from loadup-el.el.
  154. (when purify-flag
  155.   (message "Finding pointers to doc strings...")
  156.   ;; (test-atoms) ; Debug -- Doesn't happen here
  157.   (Snarf-documentation "DOC")
  158.   ;; (test-atoms) ; Debug -- Doesn't happen here
  159.   (message "Finding pointers to doc strings...done")
  160.   (Verify-documentation)
  161.   ;; (test-atoms) ; Debug -- Doesn't happen here
  162.   )
  163.  
  164. ;; Note: You can cause additional libraries to be preloaded
  165. ;; by writing a site-init.el that loads them.
  166. ;; See also "site-load" above.
  167. (if (stringp site-start-file)
  168.     (load "site-init" t))
  169. (setq current-load-list nil)
  170. (garbage-collect)
  171.  
  172. ;;; At this point, we're ready to resume undo recording for scratch.
  173. (buffer-enable-undo "*scratch*")
  174.  
  175. ;; Dump into the name `xemacs' (only)
  176. (when (member "dump" command-line-args)
  177.     (message "Dumping under the name xemacs")
  178.   (condition-case () (delete-file "xemacs") (file-error nil))
  179.   (when (fboundp 'really-free)
  180.     (really-free))
  181.   (dump-emacs "xemacs" "temacs")
  182.   (kill-emacs))
  183.  
  184. (when (member "run-temacs" command-line-args)
  185.   (message "\nBootstrapping from temacs...")
  186.   (setq purify-flag nil)
  187.   (setq inhibit-package-init t)
  188.   ;; Remove all args up to and including "run-temacs"
  189.   (apply #'run-emacs-from-temacs (cdr (member "run-temacs" command-line-args)))
  190.   ;; run-emacs-from-temacs doesn't actually return anyway.
  191.   (kill-emacs))
  192.  
  193. ;; Avoid error if user loads some more libraries now.
  194. (setq purify-flag nil)
  195.  
  196. ;; XEmacs change
  197. ;; If you are using 'recompile', then you should have used -l loadup-el.el
  198. ;; so that the .el files always get loaded (the .elc files may be out-of-
  199. ;; date or bad).
  200. (when (member "recompile" command-line-args)
  201.   (let ((command-line-args-left (cdr (member "recompile" command-line-args))))
  202.     (batch-byte-recompile-directory)
  203.     (kill-emacs)))
  204.  
  205. ;; For machines with CANNOT_DUMP defined in config.h,
  206. ;; this file must be loaded each time Emacs is run.
  207. ;; So run the startup code now.
  208.  
  209. (when (not (fboundp 'dump-emacs))
  210.   ;; Avoid loading loadup.el a second time!
  211.   (setq command-line-args (cdr (cdr command-line-args)))
  212.   (eval top-level))
  213.  
  214. ;;; loadup.el ends here
  215.